projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a509161
)
ARM: UniPhier: remove unnecessary ifdef conditional
author
Masahiro Yamada
<
[email protected]
>
Sun, 22 Mar 2015 15:07:33 +0000
(
00:07
+0900)
committer
Masahiro Yamada
<
[email protected]
>
Mon, 23 Mar 2015 15:16:02 +0000
(
00:16
+0900)
The callee (arch/arm/lib/cache-cp15.c) has a #ifdef
CONFIG_SYS_DCACHE_OFF conditional. The same conditional in the
caller (arch/arm/mach-uniphier/cache_uniphier.c) is redundant.
Signed-off-by: Masahiro Yamada <
[email protected]
>
arch/arm/mach-uniphier/cache_uniphier.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-uniphier/cache_uniphier.c
b/arch/arm/mach-uniphier/cache_uniphier.c
index c1e9164489dc3c625a2ee79c086264a87be24914..d8b82288537e6ef18a56b428091ce15006ead667 100644
(file)
--- a/
arch/arm/mach-uniphier/cache_uniphier.c
+++ b/
arch/arm/mach-uniphier/cache_uniphier.c
@@
-122,7
+122,5
@@
void v7_outer_cache_disable(void)
void enable_caches(void)
{
-#ifndef CONFIG_SYS_DCACHE_OFF
dcache_enable();
-#endif
}